VERSION 5.00 Begin VB.Form frmBack Appearance = 0 'Flat BackColor = &H80000007& BorderStyle = 1 'Fixed Single Caption = "Back" ClientHeight = 1665 ClientLeft = 4200 ClientTop = 2400 ClientWidth = 2160 Icon = "frmBack.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1665 ScaleWidth = 2160 Begin VB.CommandButton cmdDone Caption = "Done" Height = 375 Left = 240 TabIndex = 1 Top = 1080 Width = 1575 End Begin VB.Label Label1 BackColor = &H80000007& Caption = " This command takes you to the previous screen your were at, if there is one" ForeColor = &H000000FF& Height = 855 Left = 240 TabIndex = 0 Top = 120 Width = 1815 End Attribute VB_Name = "frmBack" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdDone_Click() frmBack.Hide frmGo.Show End Sub